All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TableColumn

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.TableColumn

public class TableColumn
extends NativeObject
This class wraps the Objective-C class NSTableColumn.


Constructor Index

 o TableColumn()
This default constructor is equivalent to Objective-C's [[NSTableColumn alloc] init].
 o TableColumn(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o TableColumn(Object)
This constructor has the same effect as calling - initWithIdentifier: on a newly allocated object.

Method Index

 o dataCell()
A wrapper for the - dataCell Objective-C instance method.
 o headerCell()
A wrapper for the - headerCell Objective-C instance method.
 o identifier()
A wrapper for the - identifier Objective-C instance method.
 o isEditable()
A wrapper for the - isEditable Objective-C instance method.
 o isResizable()
A wrapper for the - isResizable Objective-C instance method.
 o maxWidth()
A wrapper for the - maxWidth Objective-C instance method.
 o minWidth()
A wrapper for the - minWidth Objective-C instance method.
 o setDataCell(Cell)
A wrapper for the - setDataCell: Objective-C instance method.
 o setEditable(boolean)
A wrapper for the - setEditable: Objective-C instance method.
 o setHeaderCell(Cell)
A wrapper for the - setHeaderCell: Objective-C instance method.
 o setIdentifier(Object)
A wrapper for the - setIdentifier: Objective-C instance method.
 o setMaxWidth(float)
A wrapper for the - setMaxWidth: Objective-C instance method.
 o setMinWidth(float)
A wrapper for the - setMinWidth: Objective-C instance method.
 o setResizable(boolean)
A wrapper for the - setResizable: Objective-C instance method.
 o setTableView(TableView)
A wrapper for the - setTableView: Objective-C instance method.
 o setWidth(float)
A wrapper for the - setWidth: Objective-C instance method.
 o sizeToFit()
A wrapper for the - sizeToFit Objective-C instance method.
 o tableView()
A wrapper for the - tableView Objective-C instance method.
 o width()
A wrapper for the - width Objective-C instance method.

Constructors

 o TableColumn
 protected TableColumn(boolean shouldAllocate,
                       int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o TableColumn
 public TableColumn()
This default constructor is equivalent to Objective-C's [[NSTableColumn alloc] init].

 o TableColumn
 public TableColumn(Object identifier)
This constructor has the same effect as calling - initWithIdentifier: on a newly allocated object.

Methods

 o setIdentifier
 public native void setIdentifier(Object identifier)
A wrapper for the - setIdentifier: Objective-C instance method.

 o identifier
 public native Object identifier()
A wrapper for the - identifier Objective-C instance method.

 o setTableView
 public native void setTableView(TableView tableView)
A wrapper for the - setTableView: Objective-C instance method.

 o tableView
 public native TableView tableView()
A wrapper for the - tableView Objective-C instance method.

 o setWidth
 public native void setWidth(float width)
A wrapper for the - setWidth: Objective-C instance method.

 o width
 public native float width()
A wrapper for the - width Objective-C instance method.

 o setMinWidth
 public native void setMinWidth(float minWidth)
A wrapper for the - setMinWidth: Objective-C instance method.

 o minWidth
 public native float minWidth()
A wrapper for the - minWidth Objective-C instance method.

 o setMaxWidth
 public native void setMaxWidth(float maxWidth)
A wrapper for the - setMaxWidth: Objective-C instance method.

 o maxWidth
 public native float maxWidth()
A wrapper for the - maxWidth Objective-C instance method.

 o setHeaderCell
 public native void setHeaderCell(Cell cell)
A wrapper for the - setHeaderCell: Objective-C instance method.

 o headerCell
 public native Object headerCell()
A wrapper for the - headerCell Objective-C instance method.

 o setDataCell
 public native void setDataCell(Cell cell)
A wrapper for the - setDataCell: Objective-C instance method.

 o dataCell
 public native Object dataCell()
A wrapper for the - dataCell Objective-C instance method.

 o setResizable
 public native void setResizable(boolean flag)
A wrapper for the - setResizable: Objective-C instance method.

 o isResizable
 public native boolean isResizable()
A wrapper for the - isResizable Objective-C instance method.

 o setEditable
 public native void setEditable(boolean flag)
A wrapper for the - setEditable: Objective-C instance method.

 o isEditable
 public native boolean isEditable()
A wrapper for the - isEditable Objective-C instance method.

 o sizeToFit
 public native void sizeToFit()
A wrapper for the - sizeToFit Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index